home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- datadir.h - description
- -------------------
- begin : Sam MΣr 1 2003
- copyright : (C) 2003 by AndrΘ Simon
- email : saalen@gmx.de
- ***************************************************************************/
-
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
- #ifndef __datadir_H__
- #define __datadir_H__
-
- #include <string>
-
- #ifndef WX_PRECOMP
- #include <wx/wx.h>
- #endif
-
- using namespace std;
-
- class DataDir {
- string datadir;
- public:
- DataDir();
- // void searchDataDir();
- const string & getDir();
- const string getThemeDir();
- const string getLangDefDir();
- const string getI18nDir();
- const string getExtDir();
- const string getIndentSchemesDir();
- };
-
- #endif
-
-